page.tsx 218 B

1234567891011
  1. 'use client'
  2. import React from 'react'
  3. import ChatWithHistoryWrap from '@/app/components/base/chat/chat-with-history'
  4. const Chat = () => {
  5. return (
  6. <ChatWithHistoryWrap />
  7. )
  8. }
  9. export default React.memo(Chat)